home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / Other Langs / Tickle-4.0 (tcl) / library / help / tcl / strings / append next >
Encoding:
Text File  |  1993-10-26  |  532 b   |  16 lines  |  [TEXT/$Tcl]

  1.  
  2.           append varName value ?value value ...?
  3.  
  4.  
  5.      DESCRIPTION
  6.           Append all of the value arguments to the  current  value  of
  7.           variable  varName.   If varName doesn't exist, it is given a
  8.           value equal to the concatenation of all the value arguments.
  9.           This  command  provides  an  efficient  way to build up long
  10.           variables incrementally.  For example, ``append  a  $b''  is
  11.           much more efficient than ``set a $a$b'' if $a is long.
  12.  
  13.  
  14.      KEYWORDS
  15.           append, variable
  16.